home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / tcp_ip / jnos / jnos_src / ax25tnc.h < prev    next >
C/C++ Source or Header  |  1994-04-17  |  279b  |  16 lines

  1. #ifndef NULLTNC
  2.   
  3. struct ax25tnc {
  4.     struct proc *output;
  5.     struct proc *upload;
  6.     struct session *session;
  7. };
  8. #define NULLTNC ((struct ax25tnc *)0)
  9.   
  10. /* In ax25cmd.c: */
  11. void ax_upload __ARGS((int unused,void *sp1,void *p));
  12.   
  13. #endif /* NULLTNC */
  14.   
  15.   
  16.